home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / ir / irdirent.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  649b  |  33 lines

  1. /* this is an include file for back compatibility to old c compilers */
  2.  
  3. #ifndef IRDIRENT_H
  4. #define IRDIRENT_H
  5.  
  6. #include "cdialect.h"
  7.  
  8. #ifdef K_AND_R
  9. #include <sys/dir.h>    
  10. #ifndef ultrix
  11. #define dirent direct
  12. #endif /* ndef ultrix */
  13. #endif /* def K_AND_R */
  14.  
  15. #if (defined(NeXT) || defined(Mach))
  16. #include <sys/dir.h>    
  17. #define dirent direct
  18. #endif /* def NeXT or Mach */
  19.  
  20. #ifdef M_XENIX
  21. #include <sys/types.h>
  22. #include <dirent.h>
  23. #endif
  24.  
  25. #if !(defined(K_AND_R) || defined(NeXT) || defined(Mach) || \
  26.       defined(THINK_C) || defined(M_XENIX))
  27. #include <dirent.h>
  28. #endif /* not M_XENIX, THINK_C, Mach, NeXT, or K_AND_R */
  29.  
  30. #endif /* IRDIRENT_H */
  31.  
  32.  
  33.